﻿/* fullSlide */
.fullSlide {
    position: relative;
}

    .fullSlide .bd {
        margin: 0 auto;
        position: relative;
        z-index: 0;
        overflow: hidden;
    }

        .fullSlide .bd ul {
            width: 100% !important;
        }

        .fullSlide .bd li {
            width: 100% !important;
            height: auto;
            overflow: hidden;
            text-align: center;
        }

            .fullSlide .bd li a {
                display: block;
                height: auto;
            }

                .fullSlide .bd li a img {
                    display: block;
                    width: 100%;
                    height: 500px;
                    object-fit: cover;
                }

    .fullSlide .hd {
        width: 100%;
        position: absolute;
        z-index: 1;
        bottom: 20px;
        left: 0;
        height: 30px;
        line-height: 30px;
    }

        .fullSlide .hd ul {
            text-align: center;
        }

            .fullSlide .hd ul li {
                cursor: pointer;
                display: inline-block;
                *display: inline;
                zoom: 1;
                width: 10px;
                height: 10px;
                border-radius: 10px;
                margin: 1px;
                overflow: hidden;
                background: rgba(255, 255, 255, 0.60);
                /*filter: alpha(opacity=50);
                opacity: 0.5;*/
                line-height: 999px;
                margin: 0 3px;
                transition: 0.2s;
            }

            .fullSlide .hd ul .on {
                background: #fff;
                width: 10px;
            }

    .fullSlide .prev, .fullSlide .next {
        display: block;
        position: absolute;
        z-index: 1;
        top: 50%;
        margin-top: -15px;
        left: 0px;
        z-index: 1;
        width: 40px;
        height: 60px;
        background: url(../images/slider-arrow.png) -126px -137px #000 no-repeat;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: 0.5;
        display: none;
        border-radius: 0 10px 10px 0;
    }

    .fullSlide .next {
        left: auto;
        right: 0px;
        background-position: -6px -137px;
        border-radius: 10px 0 0 10px;
    }
